home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / halo05 < prev    next >
Text File  |  1997-01-21  |  456b  |  28 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "halo0.inc"
  7.  
  8. sphere { 0, 1
  9.   pigment { color rgbt <1, 1, 1, 1> }
  10.   halo {
  11.     emitting
  12.     spherical_mapping
  13.     linear
  14.     turbulence 1.5
  15.     color_map {
  16.       [ 0.0 color rgbt <1, 0, 0,  1.0> ]
  17.       [ 0.5 color rgbt <1, 1, 0, -1.0> ]
  18.       [ 1.0 color rgbt <1, 0, 0,  1.0> ]
  19.     } 
  20.     frequency 2
  21.     samples 20
  22.     scale 0.5
  23.   }
  24.   hollow
  25.   scale 1.5
  26. }
  27.  
  28.